/* 整体页面样式 */
body {
    margin: 0;
    padding-top: 60px; /* 为顶部固定的横幅留出空间 */
    background-color: #000; /* 修改背景颜色为黑色 */
}

/* 黑色背景横幅样式 */
.banner {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 150px; /* 修改按钮间距为 150px */
    position: fixed; /* 固定在顶部 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 确保横幅在最上层 */
}

/* 按钮样式 */
.button {
    color: white;
    text-decoration: none;
    font-size: 32px;
    padding: 10px 20px;
    transition: color 0.3s;
}

/* 鼠标悬停时按钮颜色变化 */
.button:hover {
    color: #ff0000;
}

/* 页面内容样式 */
.content {
    padding: 20px;
}